I’ve compiled all the resources that helped me in my GATE preparation, and I hope they help you too! 🚀
These are high-quality, freely available study materials that cover notes, past papers, and courses.
Discover gists
These are some notes on the performance work that went into alien-signals. I'm sharing them not as a definitive guide, but as a log of a few key discoveries. The hope is that some of these findings might be useful to others tackling similar problems in high-performance JavaScript.
My journey into the depths of reactivity performance began with Vue. I was trying to solve a specific problem in Vue 3.4: even if a computed's value didn't change, it would still trigger downstream computations and effects. This seemed inefficient. My attempt to fix this resulted in a pull request (vuejs/core#5912) that, after a year of discussions, was eventually merged. This PR introduced the Push-Pull-Push model to Vue 3.4, a model also adopted by libraries like reactivity.
For a time, I thought this was near-perfect. Then I saw the plans for Vue 3.5, which adopted a doubly-linked list but also moved to a pure pull-based model. I was still convinced
| { | |
| "name": "base-setup", | |
| "image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm", | |
| "features": { | |
| "ghcr.io/devcontainers/features/common-utils:2": { | |
| "installOhMyZsh": true, | |
| "configureZshAsDefaultShell": true | |
| }, | |
| "ghcr.io/devcontainers/features/docker-in-docker:2": {}, | |
| "ghcr.io/devcontainers/features/sshd:1": {} |
| var swot = require('swot-simple'); | |
| // DEMO OF THE SWOT-SIMPLE MODULE | |
| // type an email address in the input to the right and | |
| // this will tell you if it's academic. | |
| var input = document.body.appendChild(document.createElement('input')); | |
| var output = document.body.appendChild(document.createElement('span')); | |
| input.oninput = function() { | |
| output.innerHTML = swot.isAcademic(input.value) ? 'academic' : 'not'; |
Codex is an AI-powered CLI tool that can help with complex debugging, code analysis, and technical questions. When you encounter difficult problems that would benefit from a second perspective or deep analysis, use Codex.
- Debugging subtle bugs (e.g., bitstream alignment issues, off-by-one errors)
- Analyzing complex algorithms against specifications
- Getting a detailed code review with specific bug identification
- Understanding obscure file formats or protocols
Tailwind CSS - это утилитарный CSS-фреймворк, который позволяет быстро создавать пользовательские интерфейсы с помощью встроенных классов. Давайте составим подробную шпаргалку по основным возможностям и компонентам Tailwind.
Tailwind работает на основе классов утилит, которые применяются непосредственно в HTML. Вместо написания CSS, вы используете предопределенные классы для стилизации элементов.
| import { TextInput } from 'react-native'; | |
| import Animated, { | |
| useAnimatedRef, | |
| useHandler, | |
| dispatchCommand, | |
| useEvent, | |
| } from 'react-native-reanimated'; | |
| const AnimatedTextInput = Animated.createAnimatedComponent(TextInput); |
| package frc.robot.util; | |
| import static edu.wpi.first.units.Units.Seconds; | |
| import edu.wpi.first.units.measure.Time; | |
| import edu.wpi.first.wpilibj.DriverStation; | |
| import edu.wpi.first.wpilibj.DriverStation.Alliance; | |
| import java.util.Optional; | |
| public class HubTracker { |
| { | |
| "protocol": "Sovereign_Integrity_v2026", | |
| "auth_root": "IMDA_SINGAPORE_COMPLIANT", | |
| "logic_gate": { | |
| "stoic_refusal": true, | |
| "audit_ledger": "REQUIRED" | |
| } | |
| } |
